Add warning about using SHELLOPTS to set igncr #22
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
By default,
SHELLOPTS
is a shell variable and moving it to the environment causes all shell options to propagate to child shells. This may break scripts in a confusing way, so it is not a good idea to recommend it without at least providing a warning.Perhaps cygwin-install-action could provide an option to set up
BASH_ENV
with a file containingset -o igncr
. setup-ocaml does this when configuring cygwin.See: